home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / VBASIC / RESIZOCX.ZIP / FORM2.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-12-15  |  2.3 KB  |  78 lines

  1. VERSION 4.00
  2. Begin VB.Form Form2 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000005&
  5.    Caption         =   "ReSize - Help"
  6.    ClientHeight    =   3360
  7.    ClientLeft      =   1350
  8.    ClientTop       =   1650
  9.    ClientWidth     =   6075
  10.    BeginProperty Font 
  11.       name            =   "MS Sans Serif"
  12.       charset         =   1
  13.       weight          =   700
  14.       size            =   8.25
  15.       underline       =   0   'False
  16.       italic          =   0   'False
  17.       strikethrough   =   0   'False
  18.    EndProperty
  19.    ForeColor       =   &H80000008&
  20.    Height          =   3765
  21.    Icon            =   "FORM2.frx":0000
  22.    Left            =   1290
  23.    LinkTopic       =   "Form2"
  24.    ScaleHeight     =   3360
  25.    ScaleWidth      =   6075
  26.    Top             =   1305
  27.    Width           =   6195
  28.    Begin VB.CommandButton Command1 
  29.       Appearance      =   0  'Flat
  30.       BackColor       =   &H80000005&
  31.       Caption         =   "OK"
  32.       Height          =   372
  33.       Left            =   2280
  34.       TabIndex        =   1
  35.       Top             =   2760
  36.       Width           =   1332
  37.    End
  38.    Begin ResizeLibCtl.ReSize ReSize1 
  39.       Left            =   240
  40.       Top             =   2640
  41.       _version        =   131072
  42.       _extentx        =   741
  43.       _extenty        =   741
  44.       _stockprops     =   0
  45.       enabled         =   -1  'True
  46.       formminwidth    =   0
  47.       formminheight   =   0
  48.       formdesignheight=   3360
  49.       formdesignwidth =   6075
  50.    End
  51.    Begin VB.Label Label1 
  52.       Appearance      =   0  'Flat
  53.       BackColor       =   &H80000005&
  54.       Caption         =   $"FORM2.frx":030A
  55.       BeginProperty Font 
  56.          name            =   "Arial"
  57.          charset         =   1
  58.          weight          =   700
  59.          size            =   7.5
  60.          underline       =   0   'False
  61.          italic          =   0   'False
  62.          strikethrough   =   0   'False
  63.       EndProperty
  64.       ForeColor       =   &H80000008&
  65.       Height          =   2172
  66.       Left            =   600
  67.       TabIndex        =   0
  68.       Top             =   120
  69.       Width           =   4932
  70.    End
  71. Attribute VB_Name = "Form2"
  72. Attribute VB_Creatable = False
  73. Attribute VB_Exposed = False
  74. Option Explicit
  75. Private Sub Command1_Click()
  76.     Unload Form2
  77. End Sub
  78.